home *** CD-ROM | disk | FTP | other *** search
/ Hacker's Secrets 4 / Hacker's Secrets 4.iso / credit / ccgenkit.txt < prev    next >
Text File  |  1991-10-15  |  14KB  |  311 lines

  1. _______________________________________________________________________________
  2.  
  3. Title:   Credit Card Number Generation Kit For The Apple.
  4.  
  5. Author:  Written By The Phantom Viper.
  6.  
  7. Info:    Hayes Hacamatic ][, The Next Generation:  Part C.
  8. _______________________________________________________________________________
  9.  
  10. CALL THE CURSE.............. LIMITED ACCESS BBS................. (612) 835-1693
  11.  
  12.         This program was designed on work done by Dr. Cyclops and The Alias.
  13. An IBM version of this program has already been released.
  14.  
  15.         CC Maker will generate randomized card numbers for your use.  For
  16. details on how it works, read the second segment of this file which is the
  17. text file itself around which I based the program.
  18.  
  19.     The program and how to use it are pretty evident, whenever you want it
  20. to stop generating card numbers, press space bar.   There is no expiration
  21. date, but you need not worry.  Just make up any reasonable date, it really doesn
  22. 't matter, just make sure you don't give whoever an expired date.
  23.  
  24.  
  25. MAKING YOUR OWN CARD TYPE
  26.  
  27.         There are two things this option may be used for.  The first is to
  28. check if a credit card number is real, let's say you saw one posted and want
  29. to test to see if it isn't just something someone made up.  Type in all the
  30. digits EXACTLY EXCEPT FOR THE LAST DIGIT.  Now instead of typing in the last
  31. digit type an X, then hit RETURN to proceed.  The program will clear the
  32. screen and present you with the valid checksumed number.  Look at the last
  33. digit on the number on the screen, and the last digit that you didn't type in.
  34. If they are the same, the card number is probably real.  If not.  The card
  35. isn't.
  36.  
  37.         The second thing this option may be used for is for generating card
  38. numbers for other credit cards than the ones shown.  You have the options:
  39.  
  40. X
  41. 0-9
  42. spacebar
  43.  
  44. Yyou enter the format in, placing X where there is a random digit and 0-9
  45. where there is a non-changing digit.  You may use 'spacebar' to help
  46. seperate the columns, but it has no effect on the program.
  47.  
  48. Example:
  49.  
  50. 3XXX XXXX XXXX XXXX
  51.  
  52.         The card number always starts with a 3, then is followed by 15 random
  53. digits.  The spaces are just in there to make the number easier to read.
  54.  
  55.  
  56.  
  57.  
  58. Information program was based on follows...
  59.  
  60. *************************************
  61. *   COMPUTERS AND CREDIT SYSTEMS    *
  62. *        by... Dr. Cyclops          *
  63. *         and.. The Alias           *
  64. *************************************
  65.  
  66. This is the file everyone seems to be looking for lately - so here it is!!!
  67. Last Update : June 19 - 1989
  68.  
  69. The information presented in this article is NOT intended to be used for
  70. illegal purposes - I don't know anything legal it can be used for - but I'm
  71. not responsible for whatever uses you may have for it.
  72.  
  73. ** NOTE **
  74.  
  75. The original article was written by the Line Breaker (P.P.O.A.).  However, I,
  76. Dr. Cyclops, of the infamous Supreme Beings Corporation of America,
  77. headquarters Detroit Lakes, MN, with branch offices in three other states and
  78. several countries in Europe, have discovered some loopholes in his article.
  79. Missing or puzzling information has been filled in where needed.  Another note-
  80. There is also a program to go along with this file - should be done within a
  81. week of the last update of this article.
  82.  
  83. Sophisticated computer programs have been developed to analyze past
  84. experiences, to score applications and to recommend future changes in an
  85. attempt to reduce the loss from uncollectible accounts.  It would be very
  86. difficult to process a large number of credit card applications today without
  87. such a technique.
  88.  
  89. In developing the unique account number to be assigned to a successful
  90. applicant, the use of a check digit is usually employed.  The computer creates
  91. the check digit by using the first N - 1 digits of the account number as input
  92. to a check digit generation routine.  The resulting calculations produce a
  93. single, unique digit, which becomes the last digit of the account number.
  94.  
  95. Since this isn't really helping much - let's just dig in with a good example
  96. of a store common to pretty much everybody - Daytons!!! The format of a Daytons
  97. card is as follows (I don't have one handy but all you really need for scamming
  98. is a number).
  99.  
  100. DAYTONS
  101. XXX XXX XXXC
  102.  
  103. The credit card displayed uses a 9 digit account number, with the first eight
  104. digits (XXX XXX XXX) being the actual account number in blocks of threes, and
  105. the ninth digit (C) being the check digit.  The use of a check digit helps
  106. reduce errors in the transcription of account numbers.
  107.  
  108. When an item is purchased and the value of the item is high enough to warrant
  109. a card validity check - the number is first checked through the little black
  110. and white newsprint book (found on top of most store cash registers) to see if
  111. it's stolen or not then (usually) it is phoned in to one of many various
  112. credit card verification services.  The verification service re-checks to make
  113. sure the card isn't stolen or reported lost - then it checks the number to see
  114. if the card is valid (the check number that you will soon learn how to generate
  115. on your own), then checks to see if the appropriate funds are available.  From
  116. there the person whom you talk to (could be a machine - some are for speed)
  117. will tell the merchant whether to accept the card or not - and if not - what
  118. steps he/she should do next.
  119.  
  120. On with our little scheme...
  121.  
  122. Since you'll probably want to do a little practice first before doing actual
  123. scamming - let's start using a made up number, let's just use the card number
  124. 123 456 78 - since we don't yet have a check digit - let's just generate one.
  125. See example below next paragraph.
  126.  
  127. To generate a check digit using the 'Mod 10' technique, work from right to
  128. left.  First, multiply the digits in the odd positions (8,6,4,2) by 2.  If an
  129. individual result from any multiplication is greater than or equal to 10 (e.g.
  130. 2 x 8 = 16) - add 1 to the units position (6 + 1 = 7) and discard the digit in
  131. the 10's position.  Or in other terms - just subtract 9 from the value.  Sum
  132. these results (4 + 8 + 3 + 7 = 22) along with the even positioned account
  133. digits (22 + 1 + 3 + 5 + 7 = 38).  The check digit for this account number is
  134. the digit that must be added to the ones place to make the total value (38)
  135. evenly divisible by 10 (2 in our example : 38 + 2 = 40).  That's all there is
  136. to it!!! ALWAYS remember that when generating a check digit - to start from the
  137. right - so the rightmost account digit is position 1.  Also - I would NOT
  138. recommend using this number - it looks just a bit obvious.
  139.  
  140. Example of Daytons check digit generation...
  141.  
  142. / ---------------------------------------------------\
  143. | position : 8   7   6   5   4   3   2   1           |
  144. |                                                    |
  145. | # x 2 =  :     4       8      12      16           |
  146. | adj val  :     4   +   8   +   3   +   7      = 22 |
  147. |               / \     / \     / \     / \          |
  148. |                |       |       |       |           |
  149. | acct #   : 1   2   3   4   5   6   7   8   ?       |
  150. |            |       |       |       |               |
  151. |           \ /     \ /     \ /     \ /              |
  152. | # x 1 =  : 1   +   3   +   5   +   7          = 16 |
  153. |                                                    |
  154. | Add the summed values : 22 + 16 = 38               |
  155. | Now adjust to make it divisible by 10 :            |
  156. |         40 - 38 = 2                                |
  157. | So 2 is the check digit - Now your valid Daytons   |
  158. | card number is : 123 456 782                       |
  159. \----------------------------------------------------/
  160.  
  161. Here is a list of the values that should be obtained for each number that
  162. occurs.
  163.  
  164. -------------------------------------------------------------------------------
  165. Number    Position   Value     Number   Position   Value
  166. ------    --------   -----     ------   --------   -----
  167.   1         Even       01        1       ODD        02
  168.   2          "         02        2        "         04
  169.   3          "         03        3        "         06
  170.   4          "         04        4        "         08
  171.   5          "         05        5        "         01
  172.   6          "         06        6        "         03
  173.   7          "         07        7        "         05
  174.   8          "         08        8        "         07
  175.   9          "         09        9        "         09
  176.   0          "         00        0        "         00
  177. ------------------------------------------------------------------------------
  178.  
  179. (Note that in the above example, that is the correct way of doing it, (i.e. if
  180. you happen to be using a Daytons credit card format).  If you happen to have
  181. a different type of card - use the same method - and still work from right to
  182. left.
  183.  
  184. I have also discovered some more information on the subject.  In the original
  185. article, the VISA was listed as having the same format as MasterCard, I found
  186. it to be different.  Here are also a couple of different types of cards with
  187. their formats.  ALL use this check number verification system.  If you happen
  188. to find a different type of card, try this method, if it works for your card,
  189. it should work on others.
  190.  
  191. In ALL of the following card format examples - X stands for digit and C stands
  192. for the check digit.  On some cards - some digits MUST contain certain values -
  193. if they don't your chances of getting busted skyrocket.  On those cards - the
  194. digit will be shown in the correct position.
  195.  
  196. Visa
  197. 4XXX XXX XXX XXC
  198.  
  199. Visa Classic
  200. 4XXX XXXX XXXX XXXC
  201.  
  202. J.C. Penneys
  203. XXX XXX XXX XC
  204. (first digit MIGHT default to 5 - but I don't know)
  205.  
  206. Daytons
  207. XXX XXX XXC
  208.  
  209. American Express
  210. 3XXX XXXXXX XXXXC
  211.  
  212. Spiegel
  213. XXXXXXXXXC
  214.  
  215. Mastercard
  216. 5XXX XXXX XXXX XXXC
  217.  
  218. I don't remember the number format, but a good place to POSSIBLY scam stuff
  219. from is Nieman Marcus.  A very exclusive overpriced yuppie shopping store.  I
  220. don't know how they do their mail order business - but I suspect they do check
  221. their credit card orders well.
  222.  
  223. *********************************************
  224. * VERIFICATION NUMBERS AND MERCHANT NUMBERS *
  225. *********************************************
  226.  
  227. Since many businesses don't want their customers being ripped off by those
  228. who might use this information to illegal ends - several companies have made
  229. available places you can call by fone to check if a card has been stolen and
  230. if it has sufficient funds to cover the purchase.  To this section The Alias
  231. gets most of the credit since he did most of the work here.
  232.  
  233. CARD TYPE                      NUMBER
  234. ---------                      ------
  235. VISA/MASTERCARD              1-800-228-1122
  236. VISA/MASTERCARD              1-800-227-1212
  237. VISA/MASTERCARD              1-800-227-1122
  238. AMERICAN EXPRESS             1-800-528-2121
  239. DRIVER'S LICENSE             1-800-525-9040
  240. ???                          1-800-255-6556
  241.  
  242. When using a verification number, you also need a merchant number to tell the
  243. verification place how much business their client is getting.  At the place
  244. where I worked - and I suspect most other places - the merchant number is 10
  245. digits long.  Verification numbers are only used by places to check if a card
  246. number is valid (what you hopefully did correctly using the above process).\
  247. Verification numbers do NOT have to be used in all instances - the minimum
  248. amount for a verification number to be used is $50 or Visa and $75 for
  249. American Express.  I don't know what the amounts are for Discover (or the
  250. Discover Card format - Somebody help me out) though.
  251.  
  252. *************************************
  253. * USING SELF GENERATED CARD NUMBERS *
  254. *************************************
  255.  
  256. If you get a credit card number from a BBS to charge calls to or other - use
  257. the above process to check if it's okay.  Better yet - if you by some chance
  258. find/borrow/steal or in any way get a Real credit card - use it as quickly
  259. as possible as it will most likely soon be reported stolen.  Always check
  260. to see if a card is valid or stolen BEFORE using it.  Either use the above
  261. verification numbers - or steal one of those black and white newsprint books
  262. found on all cash registers (they won't miss 'em - they get two new updates
  263. a month).
  264.  
  265. The only SURE use of self generated card numbers, if you're perverted, is for
  266. phone sex places.  Simply create a number using the above technique (almost
  267. all take Visa), then call up the place (use a 1 - 800 number or they'll need
  268. your fone # to call you back then you're toast) and tell them you want however
  269. long you want to have fone sex (half hour or whatever).  Give them the card
  270. type, the card number, and the expiration date (make one up - they never have
  271. a record of it at the verification place - they just want to make sure the
  272. card is still good).  Now wait a few moments while they check it out.  If
  273. no problems - enjoy your new fone friend.  Have fun - but not around me!!!
  274.  
  275. ***************
  276. * FINAL NOTES *
  277. ***************
  278.  
  279. The Supreme Beings Corporation of America has been out of service for a few
  280. years now - but this information is Still in use today everywhere.  Have fun
  281. but above all... BE CAREFUL!!!
  282.  
  283. Any questions, comments, help, additional information, new card formats, etc.
  284. leave E-Mail to me, Dr. Cyclops, on any of the following fine systems...
  285. Most or all are 1200 or 2400.
  286.  
  287. Tiamat's Temple          : 612 - 731 - 0296
  288. Krackline                : 612 - 484 - 5925
  289. Darksword                : 612 - 755 - 7851
  290. Battlefield Earth        : 612 - 493 - 3361
  291. Realm of the Lizard King : 612 - 884 - 6074
  292. Smash Palace North       : 612 - 633 - 0509
  293.  
  294. Dr. Cyclops 06/20/89
  295.  
  296. ...END OF FILE
  297.  
  298.  
  299. _______________________________________________________________________________
  300.  
  301.  
  302.                 __      __  _   ______   ______   _____
  303. This has been a \ \    / / | | | ____ | |  ____| | ___ \
  304.                  \ \  / /  | | |  ____| | |____  |     |
  305.                   \ \/ /   | | | |      | |____  | |\   \
  306.                    \__/    |_| |_|      |______| |_| \___|
  307.  
  308.                                Ltd. Production
  309.  
  310. _______________________________________________________________________________
  311.